math/rand/v2.ChaCha8.readLen (field)
10 uses
math/rand/v2 (current package)
chacha8.go#L20: readLen int // 0 <= readLen <= 8
chacha8.go#L33: c.readLen = 0
chacha8.go#L55: if c.readLen > 0 {
chacha8.go#L56: n = copy(p, c.readBuf[len(c.readBuf)-c.readLen:])
chacha8.go#L57: c.readLen -= n
chacha8.go#L68: c.readLen = 8 - len(p)
chacha8.go#L82: c.readLen = copy(c.readBuf[len(c.readBuf)-len(buf):], buf)
chacha8.go#L103: if c.readLen > 0 {
chacha8.go#L105: out = append(out, uint8(c.readLen))
chacha8.go#L106: out = append(out, c.readBuf[len(c.readBuf)-c.readLen:]...)
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |